home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Icon 8.1 / msm-1 / h.sit / dproto.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-19  |  1.3 KB  |  41 lines  |  [TEXT/MPS ]

  1. /*
  2.  * Temporary prototypes in the absence of system include files.
  3.  */
  4.  
  5. #ifdef _Exit
  6. novalue    _exit        Params((int));
  7. #endif                    /* _Exit */
  8.  
  9. novalue    abort        Params((noargs));
  10. double    atof        Params((char *));
  11. long    atol        Params((char *));
  12. pointer    calloc        Params((unsigned,unsigned));
  13. int    execv        Params((char *, char **));
  14. int    execvp        Params((char *, char **));
  15. novalue    exit        Params((int));
  16. char    *getenv        Params((char *));
  17. char    *getmem        Params((unsigned));
  18. char    *index        Params((char *s, int c));
  19. pointer    malloc        Params((msize));
  20. pointer    realloc        Params((pointer, unsigned));
  21. char    *strchr        Params((char *s, int i));
  22. int    strcmp        Params((char *s1, char *s2));
  23. char    *strcpy        Params((char *s1, char *s2));
  24. #if VMS
  25. #ifndef XIcon
  26. char    *strncat    Params((char *s1, char *s2, int n));
  27. int    strncmp        Params((char *s1, char *s2, int n));
  28. char    *strncpy    Params((char *s1, char *s2, int n));
  29. #endif                    /* XIcon */
  30. #else                    /* VMS */
  31. char    *strncat    Params((char *s1, char *s2, int n));
  32. int    strncmp        Params((char *s1, char *s2, int n));
  33. char    *strncpy    Params((char *s1, char *s2, int n));
  34. #endif                    /* VMS */
  35. char    *ecvt        Params((double value, int count, int *dec, int* sign));
  36. char    *gcvt        Params((double number,int ndigit,char *buf));
  37. double    pow        Params((double x, double y));
  38. #ifdef SystemFnc
  39. int    system        Params((char *));
  40. #endif                    /* SystemFnc */
  41.